home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / SoundAndMusic / cmix / Minc / pd.c < prev    next >
C/C++ Source or Header  |  1991-03-16  |  189b  |  18 lines

  1.  
  2.  
  3. parse_dispatch(str,args,n)
  4. char *str;
  5. int n;
  6. double args[];
  7.  
  8. {
  9.     int i1;
  10.     printf ("%s:  ",str);
  11.     for (i1=0;i1<n;i1++) {
  12.         printf ("%f  ",args[i1]);
  13.     
  14.     }
  15.     printf ("\n\n ");
  16.     return -999;
  17. }
  18.